home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / General / Script Tools / Examples / Shutdown Example < prev   
Text File  |  1993-07-08  |  277b  |  7 lines

  1. set result to display dialog "Are you sure you want to shutdown?" ¬
  2.     buttons {"Shutdown", "Restart", "Cancel"} ¬
  3.     default button "Cancel"
  4. if button returned of result = "Shutdown" then ¬
  5.     shutdown without rest
  6. if button returned of result = "Restart" then ¬
  7.     shutdown with rest